Viewing 15 posts - 5,656 through 5,670 (of 9,643 total)
Is the error always off by 1 day? If it is you could do this:
SELECT
BillID,
BillDate,
firstName,
...
March 13, 2009 at 7:38 am
Lynn Pettis (3/12/2009)
Oh Boy! Double Posted Interview Questions that OP couldn't answer, here, and hereReally makes you want to jump right and help, don't it? 😛
I read the post(s),...
March 13, 2009 at 7:28 am
First I'd be interested in why you need to know this. Then I'd say, I don't think there is any way to determine this as temp tables are confined...
March 13, 2009 at 7:27 am
Do you mean you have 1 sql server and when you run a query using SSMS on the SQL Server it is very fast, but when you run the same...
March 13, 2009 at 7:09 am
Can you post the details of how you are doing this? What are all the steps in the SSIS package/dataflow? Are you sure the data is being retrieved...
March 13, 2009 at 7:07 am
You want to query the sys.tables view in the context of the database you want the table names from. For example querying it in master retrieves all the tables...
March 13, 2009 at 7:05 am
What version of SSRS? I believe this is a known issue for SSRS 2000 that was caused by either an IE or Windows update. Here is one link....
March 13, 2009 at 7:01 am
Check out the RESTORE command entry in BOL. If you are restoring a database to a different database you need to include the WITH MOVE option.
March 13, 2009 at 6:58 am
You have an extra period between Master and dbo, thus SQL Server thinks that Master is a linked server not a database. Try this:
exec Master.dbo.xp_cmdshell @cmd
March 13, 2009 at 6:55 am
In your example code, you do not have a where clause in your query. No where clause means all rows returned.
March 13, 2009 at 6:48 am
In theory, you could just setup a trace that includes all sql statement starting and completed events making sure you include the EventSequence column and then merge that trace data...
March 13, 2009 at 6:45 am
Okay guys, this is a good one, spoon feed me. Gail has already been there, too. You gotta check out the OP's latest post.
March 12, 2009 at 10:22 pm
prvreddy (3/12/2009)
Hi guys,Nobody gave definitions to all my questions.You are all giving links or BOL links.But, i need definition, please help me in this regard
Thanks
Vijay
The links are where the definitions...
March 12, 2009 at 10:19 pm
You just need to put in a single double-quote "
March 12, 2009 at 5:25 pm
As long as you are using Integrated Security (Trusted Authentication) then you can get it. If you are using SQL Authentication, like a single account from a web application,...
March 12, 2009 at 5:20 pm
Viewing 15 posts - 5,656 through 5,670 (of 9,643 total)