Psst! Did you know DevelopmentNow is a mobile web site design agency?

Contact us for help mobilizing your site, or to sign up for our beta Mobile Web SDK!


Archived Months
March 2003
April 2003
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
all groups > sqlserver server > august 2006 > threads for wednesday august 23

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Couple of questions for the experienced people out there
Posted by Dodo Lurker at 8/23/2006 10:58:55 PM
Hi, I have some unrelated questions borne from my studying of sql server internals. They are probably stupid but I am new to sql server. 1. On an insert, select, update, or delete of table rows, if the rows are not already in the buffer cache does sql server take the effected rows and put ...more >>


Grid Computing + SQL
Posted by Hassan at 8/23/2006 7:38:04 PM
Is SQL Server ever going into competing in the Grid Computing space like Oracle ? ...more >>

Query to determine if something exists versus just trying to create it...
Posted by Beavis at 8/23/2006 7:12:04 PM
I have run into two situations in the recent past that both have the same thing in common. I have to preface this with the fact that I am running the following queries in a C#/.Net environment using SQL Server Express... The question is, and it may be silly, but, should one query for the exis...more >>

Top X Problem and using a variable parameter
Posted by Adrian at 8/23/2006 5:52:57 PM
I posted this problem some time ago. Please refer to the following link. http://groups.google.co.uk/group/microsoft.public.sqlserver.programming/browse_frm/thread/959fb2cfc19bb8e2/d215bcbd057d7ec5?lnk=st&q=&rnum=1&hl=en#d215bcbd057d7ec5 The following gave me what I wanted at the time: SELEC...more >>

DateDiff rewrite
Posted by cbrichards via SQLMonster.com at 8/23/2006 5:28:09 PM
Given this query, how can I rewrite it to make it more indexable: SELECT tableUID FROM MyTable WHERE DateDiff(D, mydate, GETDAT()) BETWEEN 0 AND 29 -- Message posted via SQLMonster.com http://www.sqlmonster.com/Uwe/Forums.aspx/sql-server/200608/1 ...more >>

HOW TO RECOVER A DELETED DB
Posted by Peter at 8/23/2006 3:16:44 PM
I NEED SOME SERIOUS HELP I deleted a production database accidentally, because the person who created named it test, so I figure that it was ok to deleted. Well we don't have any type of backups for this Database. I need to know if there a tool out there can retrieve these files from a ...more >>

where stored are stored ?
Posted by bajopalabra at 8/23/2006 3:10:14 PM
hi again where (in which place) stored procedures are stored ? thanks -- atte, Hernán ...more >>

Linked Server / Alias
Posted by Amos Soma at 8/23/2006 3:08:32 PM
Is there any way I can created a linked server in 2005 and then refer to it via an alias? The linked server I need to create has a lengthly name plus I need to specify a port. It would be much easier to simply create a short alias name for it. Thanks - Amos. ...more >>



How do I determine if SQL Sever Login is disabled using T-Sql?
Posted by rodrigo.gloria NO[at]SPAM gmail.com at 8/23/2006 2:58:47 PM
How do I determine if SQL Sever Login is disabled using T-Sql? I can disable it and enabled it using the following T-Sql function: ALTER LOGIN login [ENABLE | DISABLE] I just want to know if it is enable or disabled? ...more >>

SQL Server Management Studio not coming up after installation
Posted by vivekgupta235 NO[at]SPAM gmail.com at 8/23/2006 2:09:12 PM
Hi All , I have installed SQL Server 2005 Developer edition but I am not able to see the Management Studio utility. Is there something I am missing or I have to run some other tools? Thanks in Advance , -Vivek ...more >>

dynamic partitions
Posted by Thorsen at 8/23/2006 1:05:01 PM
Can you format a partition as "dynamic" and use SQL server on it? I currently have a windows 2003 server connected to a SAN. Local disk (drive C) on the server is a basic partition. drives D and E are on the EMC storage but partitioned as "dynamic". Before I get too far, will I have a problem ...more >>

expanding table with additional column with sequential runs
Posted by samsigphi at 8/23/2006 1:03:15 PM
Hi, new to sql and need help with some script. My current table is a list of names, and a list of associated lifespans(in months I would like to add a column (months) that goes from 0 to lifespan. What table looks like now: Name Lifespan a 5 b 3 c 9 .......more >>

SQL2000 eMail service
Posted by WANNABE at 8/23/2006 12:22:02 PM
I feel that there is something wrong with my SQL setup. I logged into to the server with the same account as the server and agent are using, installed outlook2003, then opened control panel, selected MAIL, created a profile with the same name as the login that is used for the agent and serv...more >>

SRS 2005 Compatibility
Posted by nmadrigal NO[at]SPAM att.net at 8/23/2006 12:22:01 PM
We have a SQL 2000 Server that also uses SRS 2000. We are in the process of moving/cleaning up our SRS, and in the process would also like to upgrade to SRS 2005. This is probably a really stupid question, but if SRS 2005 is on a separate box from the SQL Server that houses the database from w...more >>

unique IDs between 2 replicated tables
Posted by bajopalabra at 8/23/2006 12:15:14 PM
hi i have the A-app writing in server SQL01.db.Person table and B-app writing in server SQL02.db.Person table i need to replicate in two ways with no overlapping-- what approaches can i take ? thanks -- atte, Hernán ...more >>

Troubleshooting partitioned view, partitioned by date
Posted by googleapi NO[at]SPAM auctiva.com at 8/23/2006 12:12:39 PM
I have a table that stores a lot of data, as old as 10-1-2005. Query performance is a pain so I needed a way to increase performance but retain the data. I just started looking into partitioned views yesterday. So I partitioned the table by month, which yields 11 new tables so far, each con...more >>

1 Month Query of Data Longer than 2 Months.
Posted by wreed at 8/23/2006 11:46:35 AM
I have a query on a very large database that when I run this query it takes 1 second to bring back data based on 2 months worth of data. As soon as I run the same query on 1 Month of data (based on a date field that is indexed) the query takes 7 minutes to run. On the excution plan it does not...more >>

ANSI Standards
Posted by Loren Z at 8/23/2006 11:09:10 AM
We are in the process of migrating our MS SQL Server 2000 databases to MS SQL Server 2005. We have using the MS Upgrade Advisor to flag problems in our databases so they can be fixed. Does there exist a tool from which we can get a report on which databases contain components (tables, colum...more >>

Change Body Size
Posted by Eduardo Fonseca B. at 8/23/2006 10:50:02 AM
Is there a way to change the report body size in execution time(from the template), depending on the result of an expression?. -- Eduardo Fonseca...more >>

the cumulative hotfix is able to roll back??
Posted by december at 8/23/2006 10:34:25 AM
Hi, I'm planning to install the cumulative hotfix (build 2187) on my sql 2000 clustering server (SP4, 2040). And I would like to know if the cumulative hotfix is able to roll back. If possible, please provide me any information about that. Thanks in advance. ...more >>

How to fix dbcc checkcatalog error (Msg 3853)
Posted by Jeremy at 8/23/2006 9:55:02 AM
After upgrading two of my SQL2000 databases to SQL2005, I see the following error when running dbcc checkdb (which runs dbcc checkcatalog): Msg 8992, Level 16, State 1, Line 1 Check Catalog Msg 3853, State 1: Attribute (role_principal_id=16384) of row (role_principal_id=16384,member_princip...more >>

Algorithm needed
Posted by Tom at 8/23/2006 9:34:01 AM
We are in the process of converting our existing in-house asp web sites to Sharepoint. Our existing web site has many PDF's, images, etc. These all reside on the server in a Folder\file. Since Sharepoint now a database driven architecture, I was wondering if anyone could assist me with som...more >>

Oracle to MS SQL error
Posted by Ybleu at 8/23/2006 9:07:55 AM
Hello, I have this query that was written for Oracle, but when I run it in MS SQL I get */*** ERROR *** Line 9: Incorrect syntax near 'start'. I can't seem to figure it out, can you someone please point in the right direction? select 99, login_name, (full_name) from shr_wr_approvers wh...more >>

append data to an excel file,
Posted by JIM.H. at 8/23/2006 7:46:02 AM
I have a DTS that exports a view to an excel file, is it possible to append data to an excel file, it seems if it sees that the sheet is available it creates a new sheet, I have a logo in my excel file and I want to append the rows below it. ...more >>

SQL Server Integration Services, problem loading a tab delimited file
Posted by jeff at 8/23/2006 7:29:49 AM
Looking for suggestions on how to get around a problem with loading data into an Oracle table from a tab delimited file. The problem is that the file is sent by a customer, and to be nice I'd say it's not formatted very user friendly. In the 'flat file connection manager, I'm able to select ho...more >>

What permissions do subgroups have?
Posted by bing at 8/23/2006 6:46:02 AM
Hi, In EM, the following two groups are allowed to access the database DEPT. dept_staff dept_staff_parttime Group 'dept_staff' has the deptadmin server role on the DEPT database. The deptadmin server role can do anything on all the tabless of the DEPT database. In the active director...more >>

Sql Agent jobs not starting as scheduled
Posted by Shawn Loftus at 8/23/2006 6:32:01 AM
I have multiple jobs that simply fail to start (all of them). The agent is running, and the jobs will start for a few days or weeks, then mysteriously just stop working. Manually starting the jobs fails to start them and no visible error message appears. Restarting the server does get th...more >>

Can't automate backup of a database
Posted by Ed R. at 8/23/2006 6:20:01 AM
When I try and do a maintenace plan to backup all databases there is one that does not get backedup. All the others seem to work fine. So I try to make a new maintenance plan to backup only that database and when I try and create the plan that database is not in the list of databases. I sup...more >>

SQL Server 2005 x64 Linked Server to Informix
Posted by Bobbo at 8/23/2006 4:30:07 AM
Hello, I have been somewhat forcibly involved in a project to migrate a SQL Server 2000 installation to an x64 SQL Server 2005 one. All seems well, except we have an old Informix server on our network which is configured as a linked server on the old installation. I've been 'reliably' info...more >>

Solution for this Backup Strategy
Posted by Andrew Hayes at 8/23/2006 12:00:00 AM
This is for a data entry / batch processing system using SQL Server 2000 that is used heavily during the working day throughout the year. Currently we do a full backup to disk at 2am every morning, and transaction log backups to disk every 2 hours between 8am and 10pm. We normally only hold...more >>

64-bit versus 32-bit
Posted by Chris Ruggiero at 8/23/2006 12:00:00 AM
Is there a difference in SQL Server 2005 64-bit versus 32-bit from a development or management point? I realize that there are differences in the hardware requirements and that there is 32-bit, X64, and IA64 versions. I wanted to know if sp's, back-ups, data types, queries and functions all ...more >>


DevelopmentNow Blog