Quick Question, Easy Correct Answer, Thanks!

Mar 13, 2008

the first line works, but the 2nd line doesn't.  I need just the CompanyKey as the table name. Help appreciated.

sqlcreate = "CREATE TABLE Company_" + CompanyKey + " (UserID VARCHAR(50), First_Name VARCHAR(50), Last_Name VARCHAR(50), Title VARCHAR(50), Division VARCHAR(50))"

sqlcreate = "CREATE TABLE " + CompanyKey + " (UserID VARCHAR(50), First_Name VARCHAR(50), Last_Name VARCHAR(50), Title VARCHAR(50), Division VARCHAR(50))"

View 10 Replies


ADVERTISEMENT

Need Quick Answer

Jun 17, 2004

do not have time to go through BOL .. but whats the command beside dbcc freeproccache to clear the cache .

View 1 Replies View Related

Need A Quick Answer

Nov 22, 2006

Has anyone encountered this error message [Microsoft][ODBC Driver Managr] Driver does not support this function? This occurs when importing data. The company I work for upgraded to Server 2005 and now what once worked fine now has an error. Any suggestions?

View 3 Replies View Related

Need A Quick Answer About Reporting Services In SQL Server 2005?

Jun 26, 2007

Hi all,

I apologize in advance for the lack of homework before posting, but I am just looking for a quick answer, or a quick point in the right direction to figure this out.

I have a developer from an adjacent team that wants to use Reporting Services in a SQL Server 2005 installation.

From what I found online during what I thought was a definitive search yesterday, I gave him the MSDN SQL Server 2005 DVD and told him that Reporting Services is now part of the standard installation. Which is what my brief search yesterday indicated to me.

He did the installation (full, according to him) and said he could not find Reporting Services.

So, the quick question is...

Where is Reporting Services in SQL Server 2005? I don't have a separate MSDN DVD that contains it as was the case on SQL Server 2000. This further supports my (wavering) position that it is part of the standard installation.

Thoughts? Direction? Collective kicks in the posterior?

Thanks!

View 6 Replies View Related

Easy SQL Question....first To Answer Correctly Gets....

Aug 31, 2000

Hi Folks,

Easy SQL question....first to answer correctly gets...the satisfaction of knowing he helped a fellow developer in need.

Runnning SQL 7.0 on an NT 4.0 platform in a client server network environment. Authentication is done on the NT level. Each user has his/her own name and password. Most users use the same shared software app.

QUESTION: Can the same user login to multiple machines concurrently and run applications without fear of locking or hanging or causing other mischief?

TIA.

JWB

View 3 Replies View Related

Query Help-----prob An Easy Answer Out There Somewhere

Sep 21, 2007

I am curretnly a newbie at SQL Server..but i am really good with Access.....i am looking into converting to SQL Express but i have this one issue. Below is a snippet of SQL from my VB6 app. SQL Server 2005 says i cant use 'Cdbl'

T, W, L_value.....are strings in the varchar in my SQL DB. OS_T, L, W dont exist on my actual DB i make the RS disconnected and play with the data. This snippet works fine in Access, but as expected it doesnt in SQLS...Wha are my options, if any? Thanks in advance for any help or advice.



strSQL = strSQL & "ORDER.OS_T_value, "
strSQL = strSQL & "Cdbl(0.0) as OS_T_Sort, "
strSQL = strSQL & "ORDER.OS_W_value, "
strSQL = strSQL & "Cdbl(0.0) as OS_W_Sort, "
strSQL = strSQL & "ORDER.OS_L_value, "
strSQL = strSQL & "Cdbl(0.0) as OS_L_Sort, "

View 10 Replies View Related

Query Help-----prob An Easy Answer Out There Somewhere

Sep 21, 2007

I am curretnly a newbie at SQL Server..but i am really good with Access.....i am looking into converting to SQL Express but i have this one issue. Below is a snippet of SQL from my VB6 app. SQL Server 2005 says i cant use 'Cdbl'
T, W, L_value.....are strings in the varchar in my SQL DB. OS_T, L, W dont exist on my actual DB i make the RS disconnected and play with the data. This snippet works fine in Access, but as expected it doesnt in SQLS...Wha are my options, if any? Thanks in advance for any help or advice.

strSQL = strSQL & "ORDER.OS_T_value, "
strSQL = strSQL & "Cdbl(0.0) as OS_T_Sort, "
strSQL = strSQL & "ORDER.OS_W_value, "
strSQL = strSQL & "Cdbl(0.0) as OS_W_Sort, "
strSQL = strSQL & "ORDER.OS_L_value, "
strSQL = strSQL & "Cdbl(0.0) as OS_L_Sort, "

View 8 Replies View Related

Age Old Question About GROUP BY Clause (i Think) - Probably Easy Answer

Jul 20, 2005

How does one get the primary key of the row that is joined in via agroup by aggregate clause when the aggregate is not performed on theprimary key?For example,Person table(PersonID int,FirstName varchar(50)LastName varchar(50))Visit table(VisitID int,PersonID int,VisitDate datetime)These are simplified versions of my tables. I'm trying to create aview that gets the first time each person Visited:selectp.PersonID,min(v.VisitDate)fromVisit vjoinPerson p on p.PersonID = v.PersonIDgroup byp.PersonIDThe problem is that I would like to return the VisitID in theresultset, but when I do it expands the query since I have to also putit in the group by clause.What are the different ways to achieve this?Subqueries?Only return the date and then join off of date on the outside?Neither of these seem too entising...Thanks in advance for any help.-Dave

View 6 Replies View Related

Quick Easy One

Jun 28, 2007

In MS SS 2005 Management Studio, how do you close the query result screen?

View 3 Replies View Related

Quick And Easy SQL Question . . .

Nov 29, 2007

I don't have much experience with writing Sql, which is why i'm not sure.
But basically, I have a MSSQL 2005 Database that a person can list a property with,
and if the property listing expires by date, the user can relist the listing.
The records on the search function are automatically sorted by date, and I want the relisted records to update the datecreated.
 
I added "DateCreated" to the relisting storedprocedure to change DateCreated to todays date, but I am guessing.
Specials = @Specials,
ExpirationDate = @ExpirationDate ,DateCreated = GetDate(),
DateApproved = @DateApproved,
This seems to work, but I just wanted to check to make sure it's in the proper format.
Thank you
Daniel Meis
 

View 2 Replies View Related

Quick Easy Question

Dec 29, 2004

Whats the difference between nvarchar and varchar, and which one should I use?

Thanks

View 6 Replies View Related

Quick And Easy Replication

Jul 20, 2005

I develop with SQL Server 2000 at work. Because I occasionally work athome I also have SQL Server there.Although the data is not all that important, occasionally I make changesto the structures of the tables in my database at work. (n.b. The wholedatabase is well under 20 MB)I was wondering about a quick and convenient method to communicate thosechanges home. I can't use networked replication because of thefirewalls at each end. (Maybe I could, but I don't know how.)Is there any quick and easy way to transfer table structure updates fromhere to home? I have CD-RW available at each end.It would be acceptable, but not necessary to backup/restore the entiredatabase. I'm more interested in a one-button type of solution, ratherthan an "efficient" method.-- Rick

View 1 Replies View Related

Is There A Quick And Easy Way Of Getting A Connection String For My App

Mar 18, 2004

I'm wondering if theres some easy/simple way of getting what would be the connection string if say I was using visual studio? I'm just tired of having to fiddle with a db connection string because i've missed a letter or a comma.

View 5 Replies View Related

Quick And Easy Question, Sql Update Method . . .

Nov 14, 2007

I am new to Sql, so I think this is a really easy question.
But I am working on a 2005 MSSQL database. 
When I add columns to an existing application with data and tables already being used, and the new column will be set to Database Null.
What is an easy way to quickly add the data to all the rows in the table.
For example if I am adding a checkbox, I've been doing it manually, add the column, change all the rows to False, one by one.
And then I can change it to Disallow DBNull.
As I get more and more users this could be a very time consuming process.
 
So the name of the Table is classifeds_Ads and let's say the column I want to add is Bonus and it needs to be filled with False.
How do I do this???
Thank you in advance
Daniel Meis
 

View 2 Replies View Related

Still No Answer

Mar 27, 2006

Unbelieveible!
I can not seem to find any source for questions database related that don't include using 2.0 controls just as the come out of the box!
HELP!!!!
Simple issue (or so it seems) but I can't get an anwer:
Example:
TextBox.Text has information that I want placed in a table in a sql database.  So I build a SQLDataSource control, and the triggers to fire the insert method.  I modify the InsertCommand of the SQLDataSource so that it will write my record to the table.  Something like...
InsertCommand="INSERT INTO MyTable(Description, Status) VALUES ('TextBox.Text', 'Default New Record Status)"
Now... the problem is with 'TextBox.Text' . When formated as is. the text string TextBox.Text is inserted into a record in the target table.  My problem, the simple one remember, is refering to the text string stored inside of TextBox.Text and have that value stored in the new row under the Description column.
I can't believe that no one can help with this simple problem.  Once resolved then my page is done... this is ALL that holds it up and I can't find a reference to how to go about it.
Thanks,Ken....

View 2 Replies View Related

Answer

Mar 25, 2004

Hi
I can help you but tommorow because i am very busy know I'd like to answer you .

View 1 Replies View Related

Please Please Answer My Question!!!

Jun 10, 2007

Hi,
I'm working on both VWDEE and VBEE and, in each, when I try to add a database diagram I get the following error message 'Invalid Class String' (after the 'Do you want to create required objects' prompt).
Can someone postulate a reason? If I don't get an answer i'll be pretty much dead in the water
Thanks in advance of your help.

View 1 Replies View Related

To Use Cursor Or Not To Use, What Is The Answer ??

Mar 18, 2004

"Falling back on cursors because they remind you of datasets will result in poor performance "

Hi, The above quote was from an article which advice to use store procedure and avoid T-sql in the body of a webpage.
Anyway, To me, I always use cursor when I want to process one row at a time. Is there an alternative to cursor in MS sql server to have similar results.?

thanks
Al

View 2 Replies View Related

Suggest Answer

Mar 3, 2003

Please suggest correct answer (A,B,C,D) for the following Question

You are developing an application for a worldwide furniture wholesaler. You need to create an inventory table on each of the databases located in New York, Chicago, Paris, London, San Francisco, and Tokyo. In order to accommodate a distributed environment, you must ensure that each row entered into the inventory table is unique across all location. How can you create the inventory table?

A.Use the identity function. At first location use IDENTITY(1,4), at second location use IDENTITY(2,4), and so on.
B.Use the identity function. At first location use IDENTITY(1,1), at second location use IDENTITY(100000,1), and so on.
C.CREATE TABLE inventory ( Id Uniqueidentifier NOT NULL DEFAULT NEWID(), ItemName Varchar(100) NOT NULL, ItemDescription Varchar(255) NULL, Quantity Int NOT NULL, EntryDate Datetime NOT NULL).
D.Use TIMESTAMP data type.

View 3 Replies View Related

Please Suggest Answer

Apr 9, 2003

Give the suitable answer for the below question and explain the answer.

1.You have designed the database for a Web site (or online ticketing agency) that is used to purchase concert tickets. During a ticket purchase, a buyer view a list of available tickets, decides whether to buy the tickets, and then attempts to purchase the tickets. This list of available tickets is retrieved in a cursor.
For popular concerts, thousands of buyers might attempt to purchase tickets at the same time. Because of the potentially high number of buyers at any one time, you must allow the highest possible level of concurrent access to the data. How should you design the cursor?

(A). Create a cursor within an explicit transaction, and set the transaction isolation level to REPEATABLE READ.
(B). Create a cursor that uses optimistic concurrency and positioned updates. In the cursor, place the positioned UPDATE statements within an explicit transaction.
(C). Create a cursor that uses optimistic concurrency. In the cursor, use UPDATE statements that specify the key value of the row to be updated in the WHERE clause, and place the UPDATE statements within an implicit transaction.
(D). Create a cursor that uses positioned updates. Include the SCROLL_LOCKS argument in the cursor definition to enforce pessimistic concurrency. In the cursor, place the positioned UPDATE statements within an implicit transaction.

View 1 Replies View Related

Please Give Me Answer

May 20, 2008

batch processing means

View 3 Replies View Related

Answer To Few Questions...

Nov 10, 2005

Hows does SQL server works internally:

What are his steps in the execution of a query?
Where/how does he storage the information while executing a query?
What type of Index he uses?
and so on ...

If anyone knows a website that contains this type of information about the SQL Server SGBD and could share it i would be most appreciated!

View 9 Replies View Related

Seeking Answer

Oct 17, 2007

1)Which statement shows the maximum salary paid in each job category of each department?_______
A. select dept_id, job_cat,max(salary) from employees where salary > max(salary);
B. select dept_id, job_cat,max(salary) from employees group by dept_id,job_cat;
C. select dept_id, job_cat,max(salary) from employees;
D. select dept_id, job_cat,max(salary) from employees group by dept_id;
E. select dept_id, job_cat,max(salary) from employees group by dept_id,job_cat,salary;

2)description of the students table:
sid_id number
start_date date
end_date date
which two function are valid on the start_date column?_________¡£
A. sum(start_date)
B. avg(start_date)
C. count(start_date)
D. avg(start_date,end_date)
E. min(start_date)
F. maximum(start_date)

View 3 Replies View Related

I'm Sure There's A Very Simple Answer For This....

Nov 12, 2007

Hi,

I'm trying to write a "GetQuote" procedure with a single @Quantity parameter. The purpose of the query is to sum the total cost (price * quantity) of a given (quantity) given the available "Sale" items. The sale table has the following structure:

[SellOrderID] [uniqueidentifier] DEFAULT (newid()),
[OrderDate] [datetime] DEFAULT (getdate()),
[UserID] [nvarchar](50) ,
[SellPrice] [float] ,
[SellQuantity] [int] ,
[QuantRemaining] [nchar](10) NULL,
**QuantRemaining is the sell quantity remaining after existing partial trades on the Sell Order - intentionally denormalised.

A given quantity may be satisfied by multiple 'Sell Orders' and these should be processed from the lowest price first.

e.g. give the following:
SellOrderID QuantRemaining Price
A 100 $2.00
B 300 $3.00
C 200 $1.75
D 350 $2.50

GetQuote 400 should return:
Sum((200*$1.75)+(100*$2.00)+(100*$2.50))

I am relatively new to the DB game and am having problems creating a SQL statement to do this. If anyone has a solution for this it would be greatly appreciated.

Thanks

Asderex

View 5 Replies View Related

Need Answer To SQL Question

Jul 20, 2005

I would really appreciate it if someone could give me the answers or directme to a place that would have the answers to the following 5 questions.1. I need an example of SQL select statement. (table tblSource, fields A,B,Cwhere C<100).. "is this an example that I have in ( )?2. I need to list 3 table joins or is "inner, outer, left" etc actual tablejoins? what are the others for my own knowledge.3. Can you join a table to itself? (how? Alias.)4. What is the diff, between distince and distinct row?5. How would you check a value agains a lookup tableA? (IN) or is "IN" theanswer?I am very sorry for my stupidy but I am trying to learn and my boss for onereason or another gave me a ton of questions I cant answer.Someone please help!

View 3 Replies View Related

Question And Answer

Apr 1, 2008

hi all,
i want to create such a page contains Questions , Answer(this is text feild entered by user) and Correct answer(that can be seen only by admin).
Both questions and correct answers already exist in database.
When user click the save button ,the answer will be saved into the database and when user click the submit button ,the email notification will be sent to admin.
Which control can i use and any advice for my requirements is appreciated.
i'm using visual studio 2003 and sql2000.

View 2 Replies View Related

Have An Idea But Not The Answer.... :( Needed Help

May 31, 2007

Hi,
I have a table that has the ff:
LastName   varchar(50)
FirstName  varchar(50)
PhotoPath  varchar(50)
Now I want to create a form that can accept the LastName,Firstname and also can upload a picture which in turn the filename of the image will be the value for the PhotoPath field, and eventually displays it using the repeater control.
Your Help/Info. is highly appreciated... 
 
 Jeff
 
 

View 3 Replies View Related

Answer To Aruna&#39;s Q:DTS Problem

Mar 20, 2001

For some reason I can't reply from within your message.

Make sure you have the same version of SQLserver and service pack on the SQL Server and the workstation you are trying to set up the package from, this is error due to different versions.

Your comand should look like: dtsrun /~S.... /~U ..... /~P ....

----------------------------------------

Subject:
From:
Date: DTS problem
aruna (aruram@hotmail.com)
3/20/01 2:19:38 PM

Hello

I have created a very simple DTS package to transfer data from one database to another on the same server. I am able to successfully execute the package from DTS. But if i try to schedule the package and run it from SQL agent it fails. The job that is created by the SQL agent appears as follows -

'DTSRun /~Z0x2939C85E61C391613034D42DC85BA5E18B1E12D06DC31F 242542405E07594E436B58219AC124F29B80EDEB464ACB52BA 977BF7A0E59BE9C183507AF7CDA9EB1033C1E04009EC5D4467 E1955FB83FA31BC185F4D4398F51F008BDE6677D23F9C5571A 4C3010B0ED1943C234'

and the error message i get is invalid switch .... DTS command invalid options

I have tried working with the /N and /!Y options and they dont work either. Can someone please tell me why is this problem occurring in the first place.


Thanks
aruna

View 2 Replies View Related

Is There Anybody Here Who Will Find The Answer Of My Problem ?

Mar 6, 2001

Hi all,

Nobody helped me on other SQL forums, I hope here people are better. Here is my problem : I'm trying to uninstall replication before to re-install it (2 servers working on Windows NT and SQL 6.5 SP5). On the publisher server, I chose Server/Replication Configuration/Uninstall Publishing, but then, I'm not able to re-install publication, as the 'Install Publishing' option is disabled. I've found somewhere on the web that I had to remove the distribution option from the system, which disables replication, with the sp_ServerOption stored procedure :

sp_ServerOption "myserver", "dist", false

then I've deleted the distribution database, but all this didn't change anything, the 'Install Publishing' option is still disabled. How can I get the option enabled ?

Thanks in advance if you can help me. Sorry for the English, it's not my native language.

View 2 Replies View Related

A Logical Puzzle Answer Me, Is It Possible To Get

Nov 30, 2005

I have a view based on few tables okay
I have a query that gives me document details of various revisions
Now i also get the latest rev of those if i use a MAX() in my Query

Now a case where i have say

Docu Numb - Revi - Received Date

Document1 - rev0 - 10/2004
Document1 - rev1 - 11/2004
Document1 - rev2 - 12/2004
Document1 - rev3 - 01/2005
Document1 - rev4 - 02/2005
Document1 - rev5 - 03/2005
Document1 - rev6 - 04/2005
Document1 - rev7 - 05/2005


If i query for latest it gives Document1 - rev7

And if i filter for a month of 12/2004
If i query for latest it should give Document1 - rev2

Now i need to get a filter with latest as rev2,
plus i also need as a indication of actual latest as rev 7
using a query

How do i do that ...

Coz when i use filter for a month and Max then it
does not consider rev7 for that filter and skip the record
and if i try to filter only as per month .. i get a wrong info
as latest rev2 which is not a true info as per database records.


May i possibly get both ... filtered info as per specific month and
also a rev info as what is the latest for a spec document.

Just i need to know is that possible .. in SQl using a query

Any more info needed please mail me on
neeraj.jariwala@gmail.com


Life is beautiful ... When you smile ...

View 1 Replies View Related

Question In My Graduation Project Plz Answer

Jun 26, 2006

hi all
 
iam a pregraduated student at computers and information college
 
 
i have a problem that need u to be solved
 
i want to connect from asp.net 2005 in a computer to sql server 2000 in another computer at the same network
 
let the sql server pc is called crazy
 
and the work group called mshome
 
 
would u plz write me th connection string of this connection
 
 
note :
the error is not in my code as it runs correctly but the exception is
 
login failled to user  crazyguest
 
can any programmer here answer me ?????
 

View 2 Replies View Related

THE DEFINITIVE ANSWER: Import CSV Into SQL Server

Mar 15, 2004

Guys
Hunting high and low for the definitive answer to this query.

I need a system to enable the import of a csv file (trypically contacts exported from Outlook) into a SQL Server table unique to that user through a .aspx page.

At the first and most basic level I need to simply get the data into a table.

The ultimate goal though is to have a fully functioning system whereby the user can sync between the csv file and the database enabling them to upload the data for the first time then only update changes subsequently (new records/changes to existing records) etc.

1. Does anyone have code that does such a thing?
2. Does anyone know of a component/utility that can be purchased off the shelf.
3. Is there someone with the capacity to write such a module?

regards in anticipation
Andy.

View 1 Replies View Related

Query Which System Table To Answer This

Nov 30, 2006

I have a DB with 1 default defined: UW_Zerodefault

It simply puts a 0 into particular fields upon new record creation.

Is there a query I can run against a particular system table to give me a list of fields this default is applied against in the DB?

Thanks

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved