Viewing 15 posts - 1,561 through 1,575 (of 2,486 total)
Lookup "Latching" and "Locking Architecture" the SQL Server Architecture section of Books Online.
February 13, 2005 at 4:15 pm
Generally the first thing I do for our SQL Server installations is setup the SQL Server Agent to forward all events to a central server/workstation. This gives you a single...
February 13, 2005 at 4:06 pm
What size are the tables in the database? If you have a very large table with a clustered index you will need approx 120% of the used space for that...
February 13, 2005 at 3:55 pm
I'm not sure that you are able to administer SQL Server 2005 from SQL Server 2000 Enterprise manager. If you apply SQL Server 2000 SP4 to your SQL 2000 installation, you'll...
February 13, 2005 at 3:49 pm
The way we solved it was by using a specific SQL login when connecting to the server to edit packages.
February 9, 2005 at 3:16 pm
Doing a SELECT INTO #TempTables can cause blocking in tempdb.
February 9, 2005 at 2:56 pm
I don't think that's a modifiable property.
In my opinion, if you're doing this often enough for it to become troublesome, maybe you should...
February 8, 2005 at 7:10 pm
Most likely culprit is that the strJob variable isn't re-initialised. It should work better if you change this line after the CreateTextFile line,
strJob = strJob & "--------------------------------------------------" & vbCrLf
to this
February 8, 2005 at 3:27 pm
If this is "a direct insert from one table to another", why is BCP involved?
If you are importing data into the table from another source, then again, why is BCP involved?
In...
February 7, 2005 at 7:14 pm
Microsoft also provide a basic SQL Admin program thats web based. It's not as feature-rich as EM though
February 7, 2005 at 7:06 pm
SQL should indeed be able to handle sorting out generating the identities in this scenario. What you should be aware of is the different methods of returning the generated identity...
February 7, 2005 at 4:39 pm
You're missing the "INTO @pk" part on your second FETCH statement.
February 7, 2005 at 4:36 pm
The reason this problem arises is because SRS evalutes both sides of the IIF statement.
Try this instead,
=iif(Fields!OnHandCount.Value = 0, 1, Fields!OnHandCount.Value) / iif(Fields!IssuedCount.Value=0, 1, Fields!IssuedCount.Value)
February 7, 2005 at 4:07 pm
You've got two options I can see straight off. Either way you won't be able to use the wizard.
1. Import your CSV file into a seperate table the database using...
February 7, 2005 at 3:57 pm
Try this. Fill in the blanks as indicated by << >>. Put it in a job with a ActiveX Script step.
One thing you might want to check is where the...
February 7, 2005 at 3:52 pm
Viewing 15 posts - 1,561 through 1,575 (of 2,486 total)