Viewing 15 posts - 1,291 through 1,305 (of 2,268 total)
Bol = books on line = SQL sever help . search for SSIS tutorials to get you started.
If you want a way for the client to run this...
September 14, 2009 at 11:05 am
Another way to do this would be to create a SSIS package that can extract the file and write to a csv file, you can even get the SSIS package...
September 14, 2009 at 10:45 am
liebesiech (9/10/2009)
September 10, 2009 at 5:12 am
Michael Valentine Jones (9/4/2009)
steveb (9/4/2009)
It can make developing software a lot easier - this is probably the best reason
Do you mean that having Primary Keys makes it easier, or not...
September 10, 2009 at 3:30 am
It can make developing software a lot easier - this is probably the best reason
September 4, 2009 at 10:21 am
It looks like you need to do a join on the tables, though it is hard to tell with limited information.
Could you post the table structures, sample data and what...
September 3, 2009 at 4:07 am
Have a look at the job history there should be an error logged in there..
September 2, 2009 at 9:00 am
Damien (9/2/2009)
select * from master..syscacheobjects
where objtype = 'ADHOC'
It has a field of sql but how will I know on when...
September 2, 2009 at 5:21 am
This can be done using a Linked server.
http://msdn.microsoft.com/en-us/library/aa213778(SQL.80).aspx
you then refer to the linked table using the four part naming convention linked_server_name.catalog.schema.object_name
September 1, 2009 at 7:11 am
gary.wood (8/28/2009)
But either way, a value like 'NG123' would fail the ISNUMERIC test, so I expected it to be filtered before the...
August 28, 2009 at 9:22 am
try evaluating isnumeric = 1 not 0
select key1, column1, cast(column1 as int) as cst from test1
where (isnumeric(column1) = 1)
August 28, 2009 at 8:40 am
From the description a query with group by and a top 25 would work ordered by count(*)
select top 25 Store_name, count(*)
from CallLog
Group By Store_name
Order by Count(*)
This is just a guess...
August 24, 2009 at 9:49 am
it seems like this is a case of parameter sniffing where the optimiser wrongly guesses the parameters for the stored procedure.
http://www.sqlservercentral.com/blogs/ken_kaufman/archive/2007/11/28/3289.aspx
August 19, 2009 at 3:49 am
Or you can try the GUI way (if you have the default trace running)
Right Click Datase --> Reports --> Standard Reports --> Schema Changes History
I hope that you have a...
August 4, 2009 at 8:37 am
Viewing 15 posts - 1,291 through 1,305 (of 2,268 total)