Viewing 15 posts - 46,936 through 46,950 (of 49,571 total)
Are you using SQL 2005? If so, can you post the execution plan please (save as a .sqlplan file, zip and attach please)
My initial thoughts - 90 000 out of...
April 14, 2008 at 1:17 am
It's best to do a reindex first and never to shrink.
Databases need to have some free space within them to work. If you shrink one down to the minimum size,...
April 11, 2008 at 8:09 am
Interesting. Ok, will take that back. There's nothing wrong with having begin tran and commit in different batches though. This does work without error
BEGIN TRAN
GO
WAITFOR delay '00:00:10'
GO
COMMIT TRAN
Looks like SQL...
April 11, 2008 at 7:57 am
I wasn't speaking about the occations when yuo need a cross join. If you need a full cartesian product, then just list the tables. Dunno about you though, but I...
April 11, 2008 at 7:21 am
If the database is in simple recovery mode (which it is) that option will have no effect. It's a older way of doing exactly what simple recovery mode does.
Also, that...
April 11, 2008 at 5:02 am
CPU or memory? (Title says one, post says the other)
April 11, 2008 at 3:38 am
Books online is your friend.
Here's an simplified version of a sample query from the help page on sys.dm_exec_sql_text
SELECT s2.dbid,
s1.sql_handle,
s2.text...
April 11, 2008 at 12:45 am
GSquared (4/10/2008)
April 11, 2008 at 12:34 am
If you install the SQL Server workstation components, you'll ge BI development studio. It's Visual studio, with the BI projects in it. No need to download anything.
April 11, 2008 at 12:25 am
escaleraroyal (4/10/2008)
which one is faster?2Gig CPU + 15.4GB ram
or
3.06Gig CPU + 7.75GB ram
Faster for what?
What size DB do you have? OLTP or Datawarehouse style usage
How many concurrent users?
April 11, 2008 at 12:16 am
System processes (spid < 51) or user processes?
Are you running SQL with the windows fibres enabled?
April 11, 2008 at 12:03 am
What exactly do you mean by 'doesn't work'?
Very slow?
Errors?
???
April 11, 2008 at 12:01 am
shwetha004 (4/8/2008)
Public cn as New ADODB.Connection
Dim connStr as String
connStr ="";//i have checked that the connection string points to the correct database.
cn.Open connStr
cn.Execute sqlStatement//the program hangs at this line of code
What's...
April 10, 2008 at 11:59 pm
Sounds like there might be some permissions problems somewhere.
Do you know what account SQL Express is running as? (SQL Server configuration manager will show you that)
April 10, 2008 at 11:52 pm
At my current place we start with the technical interview. Since we're curently looking for people to do performance tuning and monitoring, I'll usually start with a very simple question...
April 10, 2008 at 6:29 am
Viewing 15 posts - 46,936 through 46,950 (of 49,571 total)