Viewing 15 posts - 856 through 870 (of 1,253 total)
Hi
One major difference between temp tables and table variables is that you can index your temp tables.
Generally when you have a large dataset you would use temp tables and...
"Keep Trying"
March 16, 2008 at 10:56 pm
Whihc is the OS you are using.
"Keep Trying"
March 13, 2008 at 1:05 am
Hi
Backups will not help in your case. What abt importing data.
You can use queries where you can take only the required data and import it. You can also use SSIS.
"Keep Trying"
March 12, 2008 at 12:31 am
If you dont get the error message then its confirmation that the deletion worked properly.
"Keep Trying"
March 11, 2008 at 1:08 am
Hi
1 - Order should not affect the performance. Order does not affect the execution plans made by SQL Server. It then uses these plans when u execute the queries/procs.
2 -...
"Keep Trying"
March 11, 2008 at 1:06 am
Add error handling
CREATE PROCEDURE sales.up_EmpDelete
@SSN char(9)
AS
BEGIN
DELETE FROM employee WHERE ssn = @ssn;
IF @@Error <> 0
BEGIN
RAISERROR 50001 ' Error while deleting from employee'
END
END
"Keep Trying"
March 10, 2008 at 11:18 pm
Nice article and easy to understand.
"Keep Trying"
March 10, 2008 at 11:15 pm
Hi
Are you having the same problem if you are querying a minimum no: of rows say around 50.
did u change the protocols and check.
Is there any Firewall ....
"Keep Trying"
March 10, 2008 at 11:14 pm
From BOL
The Local Service account is a special, built-in account that is similar to an authenticated user account. The Local Service account has the same level of access to...
"Keep Trying"
March 5, 2008 at 3:23 am
Hi
I think you can easily create a small table and try out the sql statements. If you can use a table with the same or similar structure as that of...
"Keep Trying"
March 5, 2008 at 3:19 am
You will need a domain account for this.
"Keep Trying"
March 4, 2008 at 11:40 pm
Yes, If you have jobs that need to access the network then your SQL Server Agent must be configured with a domain account. For ex:- if u have log...
"Keep Trying"
March 4, 2008 at 11:31 pm
Yes use the UpdateLock (UPDLOCK ) .
"Keep Trying"
March 4, 2008 at 2:25 am
Hi
Assuming you have a identity column
take the max value of the identity column for those records where the "flag is set".
Then query the next 100 records whose identity value...
"Keep Trying"
March 3, 2008 at 2:06 am
Hi
Was the column name changed ? was some other column renamed to the column used in the view ?
"Keep Trying"
February 28, 2008 at 11:52 pm
Viewing 15 posts - 856 through 870 (of 1,253 total)