Viewing 15 posts - 1,651 through 1,665 (of 2,008 total)
If anyone here has created a data model for a successful workflow application I'd like to hear about it.
What were some of the considerations you factored into the design? What...
November 13, 2011 at 11:58 pm
The indexes are fragmented 100%.
Are you sure it's fragmentation not the fill factor.
FILLFACTOR specifies a percentage that indicates how full the Database Engine should make the leaf level...
November 13, 2011 at 11:42 pm
The tables needed to be partitioned the indexes needed to be dropped and created.
It’s not required if you are not changing their definition (big change).
Try rebuild or reorganize.
ALTER INDEX {...
November 13, 2011 at 11:32 pm
conSQL -- SQL Server Connection
conAccess -- Access Connection
dtTable -- Filtered Data Table from conSQL
Now, dump dtTable data table via conAccess.
November 12, 2011 at 5:30 am
shubham.saxena67 (11/12/2011)
As u know that each keyword that is reserved shows with blue color
and LOOP also shows with Blue color within query analyzer..that's why i am
asking..but u do...
November 12, 2011 at 5:19 am
Is there any way to gather additional mirroring logging beyond the standard SQL error log?
In addition to using the Database Mirroring Monitor and dbmmonitor stored procedures to monitor a mirrored...
November 12, 2011 at 5:13 am
Can you please post the results of following?
SELECT a.idTest
,a.*
FROM vwMostRecentInstanceOfEachStatusPerTest a
INNER JOIN
...
November 12, 2011 at 5:02 am
shubham.saxena67 (11/12/2011)
Loop Keyword Not Found in the given link..there is no reserved kyword like LOOP...
ha ha :-D... That is what I want to convey. It's not available in SQL Server.
November 12, 2011 at 4:53 am
shubham.saxena67 (11/12/2011)
THEN WHAT IS ROLE OF LOOP KEYWORD IN SQL...
Do you find any LOOP keyword here?
Reserved Keywords (Transact-SQL)
November 12, 2011 at 4:42 am
SQL Backup failed with exit code: 667 SQL error code: 0 [SQLSTATE 42000] (Error 50000). The step failed.
It's time to pay money 😉
667 -- Trial period has expired....
November 12, 2011 at 4:34 am
WHILE Boolean_expression
{ sql_statement | statement_block | BREAK | CONTINUE }
WHILE (Transact-SQL)
http://msdn.microsoft.com/en-us/library/ms178642.aspx
Control-of-Flow Language (Transact-SQL)
http://msdn.microsoft.com/en-us/library/ms174290.aspx
There is no FOR loop in SQL Server.
November 12, 2011 at 4:27 am
Just to make sure I understand it correctly...
If you have start with Node 8 as Child, it has 2 parents (6&7)
6 has 2 parents -> 2 & 7
7 has 1...
November 12, 2011 at 4:22 am
Here is something to start with.
SELECT A.*, B.*
FROM A FULL OUTER JOIN B
ON A.ID = B.ID
WHERE A.ID IS NULL
OR B.ID IS NULL
Or MERGE with OUTPUT clause.
[ WITH <common_table_expression> [,...n]...
November 12, 2011 at 4:01 am
It means User Credentials are not supplied by (& saved in) Crystal Reports while connecting it to SQL Server. Check for Crystal Report forums for more.
November 12, 2011 at 3:43 am
Or you may use DB Mirroring.
Server1
DB1 – Principal
DB2 – Mirror
Server2
DB1 – Mirror
DB2 - Principal
Database Mirroring Overview
November 12, 2011 at 3:22 am
Viewing 15 posts - 1,651 through 1,665 (of 2,008 total)